home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interactive Media Design Review 1999
/
Interactive Media Design Review 1999.iso
/
pc
/
Demos
/
Bombardier_PC
/
INDEX.DIR
/
00059_Script_59
< prev
next >
Wrap
Text File
|
1999-03-07
|
550b
|
28 lines
on mouseDown
global gSubList, gCurrentSelection, gMouseLock, gTimerLock, gMouseLatency
if gMouseLock then
put the timer + gMouseLatency into gTimerLock
put the mouseLine into var
if var > 0 and var < 200 then
put 0 into gMouseLock
hilite line var of cast gSubList
put gSubList&"OFF" into offScreenList
hilite line var of cast offScreenList
put the selection into gCurrentSelection
tell the stage to hopTo gCurrentSelection
end if
end if
end